home *** CD-ROM | disk | FTP | other *** search
/ IRIX Base Documentation 2002 November / SGI IRIX Base Documentation 2002 November.iso / usr / share / catman / p_man / cat3 / SCSL / zpotrs.z / zpotrs
Encoding:
Text File  |  2002-10-03  |  3.4 KB  |  133 lines

  1.  
  2.  
  3.  
  4. ZZZZPPPPOOOOTTTTRRRRSSSS((((3333SSSS))))                                                          ZZZZPPPPOOOOTTTTRRRRSSSS((((3333SSSS))))
  5.  
  6.  
  7.  
  8. NNNNAAAAMMMMEEEE
  9.      ZPOTRS - solve a system of linear equations A*X = B with a Hermitian
  10.      positive definite matrix A using the Cholesky factorization A = U**H*U or
  11.      A = L*L**H computed by ZPOTRF
  12.  
  13. SSSSYYYYNNNNOOOOPPPPSSSSIIIISSSS
  14.      SUBROUTINE ZPOTRS( UPLO, N, NRHS, A, LDA, B, LDB, INFO )
  15.  
  16.          CHARACTER      UPLO
  17.  
  18.          INTEGER        INFO, LDA, LDB, N, NRHS
  19.  
  20.          COMPLEX*16     A( LDA, * ), B( LDB, * )
  21.  
  22. IIIIMMMMPPPPLLLLEEEEMMMMEEEENNNNTTTTAAAATTTTIIIIOOOONNNN
  23.      These routines are part of the SCSL Scientific Library and can be loaded
  24.      using either the -lscs or the -lscs_mp option.  The -lscs_mp option
  25.      directs the linker to use the multi-processor version of the library.
  26.  
  27.      When linking to SCSL with -lscs or -lscs_mp, the default integer size is
  28.      4 bytes (32 bits). Another version of SCSL is available in which integers
  29.      are 8 bytes (64 bits).  This version allows the user access to larger
  30.      memory sizes and helps when porting legacy Cray codes.  It can be loaded
  31.      by using the -lscs_i8 option or the -lscs_i8_mp option. A program may use
  32.      only one of the two versions; 4-byte integer and 8-byte integer library
  33.      calls cannot be mixed.
  34.  
  35. PPPPUUUURRRRPPPPOOOOSSSSEEEE
  36.      ZPOTRS solves a system of linear equations A*X = B with a Hermitian
  37.      positive definite matrix A using the Cholesky factorization A = U**H*U or
  38.      A = L*L**H computed by ZPOTRF.
  39.  
  40. AAAARRRRGGGGUUUUMMMMEEEENNNNTTTTSSSS
  41.      UPLO    (input) CHARACTER*1
  42.              = 'U':  Upper triangle of A is stored;
  43.              = 'L':  Lower triangle of A is stored.
  44.  
  45.      N       (input) INTEGER
  46.              The order of the matrix A.  N >= 0.
  47.  
  48.      NRHS    (input) INTEGER
  49.              The number of right hand sides, i.e., the number of columns of
  50.              the matrix B.  NRHS >= 0.
  51.  
  52.      A       (input) COMPLEX*16 array, dimension (LDA,N)
  53.              The triangular factor U or L from the Cholesky factorization A =
  54.              U**H*U or A = L*L**H, as computed by ZPOTRF.
  55.  
  56.      LDA     (input) INTEGER
  57.              The leading dimension of the array A.  LDA >= max(1,N).
  58.  
  59.  
  60.  
  61.  
  62.  
  63.                                                                         PPPPaaaaggggeeee 1111
  64.  
  65.  
  66.  
  67.  
  68.  
  69.  
  70. ZZZZPPPPOOOOTTTTRRRRSSSS((((3333SSSS))))                                                          ZZZZPPPPOOOOTTTTRRRRSSSS((((3333SSSS))))
  71.  
  72.  
  73.  
  74.      B       (input/output) COMPLEX*16 array, dimension (LDB,NRHS)
  75.              On entry, the right hand side matrix B.  On exit, the solution
  76.              matrix X.
  77.  
  78.      LDB     (input) INTEGER
  79.              The leading dimension of the array B.  LDB >= max(1,N).
  80.  
  81.      INFO    (output) INTEGER
  82.              = 0:  successful exit
  83.              < 0:  if INFO = -i, the i-th argument had an illegal value
  84.  
  85. SSSSEEEEEEEE AAAALLLLSSSSOOOO
  86.      INTRO_LAPACK(3S), INTRO_SCSL(3S)
  87.  
  88.      This man page is available only online.
  89.  
  90.  
  91.  
  92.  
  93.  
  94.  
  95.  
  96.  
  97.  
  98.  
  99.  
  100.  
  101.  
  102.  
  103.  
  104.  
  105.  
  106.  
  107.  
  108.  
  109.  
  110.  
  111.  
  112.  
  113.  
  114.  
  115.  
  116.  
  117.  
  118.  
  119.  
  120.  
  121.  
  122.  
  123.  
  124.  
  125.  
  126.  
  127.  
  128.  
  129.                                                                         PPPPaaaaggggeeee 2222
  130.  
  131.  
  132.  
  133.